home *** CD-ROM | disk | FTP | other *** search
/ PC World Komputer 2010 April / PCWorld0410.iso / hity wydania / GIMP 2.6.8 / gimp-2.6.8-i686-setup.exe / {app} / share / gimp / 2.0 / scripts / pupi-button.scm < prev    next >
Text File  |  2009-12-15  |  8KB  |  213 lines

  1. ; GIMP - The GNU Image Manipulation Program
  2. ; Copyright (C) 1995 Spencer Kimball and Peter Mattis
  3. ;
  4. ; Round Button --- create a round beveled Web button.
  5. ; Copyright (C) 1998 Federico Mena Quintero & Arturo Espinosa Aldama
  6. ; federico@nuclecu.unam.mx arturo@nuclecu.unam.mx
  7. ; ************************************************************************
  8. ; Changed on Feb 4, 1999 by Piet van Oostrum <piet@cs.uu.nl>
  9. ; For use with GIMP 1.1.
  10. ; All calls to gimp-text-* have been converted to use the *-fontname form.
  11. ; The corresponding parameters have been replaced by an SF-FONT parameter.
  12. ; ************************************************************************
  13. ;
  14. ; This program is free software; you can redistribute it and/or modify
  15. ; it under the terms of the GNU General Public License as published by
  16. ; the Free Software Foundation; either version 2 of the License, or
  17. ; (at your option) any later version.
  18. ;
  19. ; This program is distributed in the hope that it will be useful,
  20. ; but WITHOUT ANY WARRANTY; without even the implied warranty of
  21. ; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  22. ; GNU General Public License for more details.
  23. ;
  24. ; You should have received a copy of the GNU General Public License
  25. ; along with this program; if not, write to the Free Software
  26. ; Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
  27.  
  28. (define (script-fu-round-button text
  29.                                 size
  30.                                 font
  31.                                 ul-color
  32.                                 lr-color
  33.                                 text-color
  34.                                 ul-color-high
  35.                                 lr-color-high
  36.                                 hlight-color
  37.                                 xpadding
  38.                                 ypadding
  39.                                 bevel
  40.                                 ratio
  41.                                 notpressed
  42.                                 notpressed-active
  43.                                 pressed)
  44.  
  45.   (cond ((eqv? notpressed TRUE)
  46.          (do-pupibutton text size font ul-color lr-color
  47.                         text-color xpadding ypadding bevel ratio 0)))
  48.   (cond ((eqv? notpressed-active TRUE)
  49.          (do-pupibutton text size font ul-color-high lr-color-high
  50.                         hlight-color xpadding ypadding bevel ratio 0)))
  51.   (cond ((eqv? pressed TRUE)
  52.          (do-pupibutton text size font ul-color-high lr-color-high
  53.                         hlight-color xpadding ypadding bevel ratio 1))))
  54.  
  55. (define (do-pupibutton text
  56.                        size
  57.                        font
  58.                        ul-color
  59.                        lr-color
  60.                        text-color
  61.                        xpadding
  62.                        ypadding
  63.                        bevel
  64.                        ratio
  65.                        pressed)
  66.  
  67.   (define (text-width extents)
  68.     (car extents))
  69.  
  70.   (define (text-height extents)
  71.     (cadr extents))
  72.  
  73.   (define (text-ascent extents)
  74.     (caddr extents))
  75.  
  76.   (define (text-descent extents)
  77.     (cadr (cddr extents)))
  78.  
  79.   (define (round-select img
  80.                         x
  81.                         y
  82.                         width
  83.                         height
  84.                         ratio)
  85.     (let* ((diameter (* ratio height)))
  86.       (gimp-ellipse-select img x y diameter height CHANNEL-OP-ADD FALSE 0 0)
  87.       (gimp-ellipse-select img (+ x (- width diameter)) y
  88.                            diameter height CHANNEL-OP-ADD FALSE 0 0)
  89.       (gimp-rect-select img (+ x (/ diameter 2)) y
  90.                         (- width diameter) height CHANNEL-OP-ADD FALSE 0)))
  91.  
  92.   (let* (
  93.         (text-extents (gimp-text-get-extents-fontname text
  94.                                                       size
  95.                                                       PIXELS
  96.                                                       font))
  97.         (ascent (text-ascent text-extents))
  98.         (descent (text-descent text-extents))
  99.  
  100.         (height (+ (* 2 (+ ypadding bevel))
  101.                        (+ ascent descent)))
  102.  
  103.         (radius (/ (* ratio height) 4))
  104.  
  105.         (width (+ (* 2 (+ radius xpadding))
  106.                   bevel
  107.                   (text-width text-extents)))
  108.  
  109.         (img (car (gimp-image-new width height RGB)))
  110.  
  111.         (bumpmap (car (gimp-layer-new img width height
  112.                                       RGBA-IMAGE "Bumpmap" 100 NORMAL-MODE)))
  113.         (gradient (car (gimp-layer-new img width height
  114.                                        RGBA-IMAGE "Button" 100 NORMAL-MODE)))
  115.         )
  116.  
  117.     (gimp-context-push)
  118.  
  119.     (gimp-image-undo-disable img)
  120.  
  121.     ; Create bumpmap layer
  122.  
  123.     (gimp-image-add-layer img bumpmap -1)
  124.     (gimp-selection-none img)
  125.     (gimp-context-set-background '(0 0 0))
  126.     (gimp-edit-fill bumpmap BACKGROUND-FILL)
  127.  
  128.     (round-select img (/ bevel 2) (/ bevel 2)
  129.                   (- width bevel) (- height bevel) ratio)
  130.     (gimp-context-set-background '(255 255 255))
  131.     (gimp-edit-fill bumpmap BACKGROUND-FILL)
  132.  
  133.     (gimp-selection-none img)
  134.     (plug-in-gauss-rle RUN-NONINTERACTIVE img bumpmap bevel 1 1)
  135.  
  136.     ; Create gradient layer
  137.  
  138.     (gimp-image-add-layer img gradient -1)
  139.     (gimp-edit-clear gradient)
  140.     (round-select img 0 0 width height ratio)
  141.     (gimp-context-set-foreground ul-color)
  142.     (gimp-context-set-background lr-color)
  143.  
  144.     (gimp-edit-blend gradient FG-BG-RGB-MODE NORMAL-MODE
  145.                      GRADIENT-LINEAR 100 0 REPEAT-NONE FALSE
  146.                      FALSE 0 0 TRUE
  147.                      0 0 0 (- height 1))
  148.  
  149.     (gimp-selection-none img)
  150.  
  151.     (plug-in-bump-map RUN-NONINTERACTIVE img gradient bumpmap
  152.                       135 45 bevel 0 0 0 0 TRUE pressed 0)
  153.  
  154. ;     Create text layer
  155.  
  156.     (cond ((eqv? pressed 1) (set! bevel (+ bevel 1))))
  157.  
  158.     (gimp-context-set-foreground text-color)
  159.     (let ((textl (car (gimp-text-fontname
  160.                        img -1 0 0 text 0 TRUE size PIXELS
  161.                        font))))
  162.       (gimp-layer-set-offsets textl
  163.                               (+ xpadding radius bevel)
  164.                               (+ ypadding descent bevel)))
  165.  
  166. ;   Delete some fucked-up pixels.
  167.  
  168.     (gimp-selection-none img)
  169.     (round-select img 1 1 (- width 1) (- height 1) ratio)
  170.     (gimp-selection-invert img)
  171.     (gimp-edit-clear gradient)
  172.  
  173. ;     Done
  174.  
  175.     (gimp-image-remove-layer img bumpmap)
  176.     (gimp-image-merge-visible-layers img EXPAND-AS-NECESSARY)
  177.  
  178.     (gimp-selection-none img)
  179.     (gimp-image-undo-enable img)
  180.     (gimp-display-new img)
  181.  
  182.     (gimp-context-pop)
  183.   )
  184. )
  185.  
  186. (script-fu-register "script-fu-round-button"
  187.   _"_Round Button..."
  188.   _"Create images, each containing an oval button graphic"
  189.   "Arturo Espinosa (stolen from quartic's beveled button)"
  190.   "Arturo Espinosa & Federico Mena Quintero"
  191.   "June 1998"
  192.   ""
  193.   SF-STRING     _"Text"                 "GIMP"
  194.   SF-ADJUSTMENT _"Font size (pixels)"   '(16 2 100 1 1 0 1)
  195.   SF-FONT       _"Font"                 "Sans"
  196.   SF-COLOR      _"Upper color"          '(192 192 0)
  197.   SF-COLOR      _"Lower color"          '(128 108 0)
  198.   SF-COLOR      _"Text color"           "black"
  199.   SF-COLOR      _"Upper color (active)" '(255 255 0)
  200.   SF-COLOR      _"Lower color (active)" '(128 108 0)
  201.   SF-COLOR      _"Text color (active)"  '(0 0 192)
  202.   SF-ADJUSTMENT _"Padding X"            '(4 0 100 1 10 0 1)
  203.   SF-ADJUSTMENT _"Padding Y"            '(4 0 100 1 10 0 1)
  204.   SF-ADJUSTMENT _"Bevel width"          '(2 0 100 1 10 0 1)
  205.   SF-ADJUSTMENT _"Round ratio"          '(1 0.05 20 0.05 1 2 1)
  206.   SF-TOGGLE     _"Not pressed"          TRUE
  207.   SF-TOGGLE     _"Not pressed (active)" TRUE
  208.   SF-TOGGLE     _"Pressed"              TRUE
  209. )
  210.  
  211. (script-fu-menu-register "script-fu-round-button"
  212.                          "<Image>/File/Create/Buttons")
  213.